home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cuteftp_flaws2.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  54 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5.  
  6. if(description)
  7. {
  8.  script_id(15860);
  9.  script_bugtraq_id(11776);
  10.  
  11.  script_version("$Revision: 1.1 $");
  12.  
  13.  name["english"] = "CuteFTP multiple flaws (2)";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote host has the program CuteFTP.exe installed.
  19.  
  20. CuteFTP is a FTP client which contains seversl overflow conditions
  21. which may be exploited by an attacker to gain a shell on this
  22. host.
  23.  
  24. To exploit these vulnerabilities, an attacker would need to set
  25. up a rogue FTP server and lure a user of this host to browse it
  26. using CuteFTP.
  27.  
  28. Solution : None at this time
  29. Risk factor : High";
  30.  
  31.  
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "Determines the presence of CuteFTP.exe";
  36.  
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_GATHER_INFO);
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  42.  family["english"] = "Windows";
  43.  script_family(english:family["english"]);
  44.  
  45.  script_dependencies("cuteftp_flaws.nasl");
  46.  exit(0);
  47. }
  48.  
  49.  
  50. version = get_kb_item("SMB/Windows/Products/CuteFTP/Version");
  51. if ( ! version ) exit(0);
  52. if(ereg(pattern:"^([0-5]\.|6\.0\.0\.)", string:version))
  53.   security_hole(port);
  54.